import { Suspense } from "react"; import { Skeleton } from "@/components/ui/skeleton"; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import VendorDocumentPage from "./vendor-document-page"; import { Shell } from "@/components/shell"; export const metadata = { title: "Document Search and Upload", description: "Vendor Document Search and File Upload", }; // ============================================================================ // 로딩 스켈레톤 // ============================================================================ function VendorDocumentSkeleton() { return (
); } export default async function DocumentUploadPage({ searchParams, }: { searchParams: Promise<{ [key: string]: string | string[] | undefined }>; }) { const params = await searchParams; return ( {/* 헤더 */}

SWP Document Submission

{/* 메인 컨텐츠 */} }>
); }